home *** CD-ROM | disk | FTP | other *** search
/ Aminet 16 / Aminet 16 (1996)(GTI - Schatztruhe)[!][Dec 1996].iso / Aminet / dev / src / wangisrc.lha / wangi / z / ea / deea.h < prev    next >
C/C++ Source or Header  |  1996-02-04  |  538b  |  35 lines

  1. /*************************************************************************
  2.  *
  3.  * deea
  4.  *
  5.  * Copyright ©1995 Lee Kindness and Evan Tuer
  6.  * cs2lk@scms.rgu.ac.uk
  7.  *
  8.  * dechunk.h
  9.  */
  10.  
  11. #ifndef _DEEA_H_
  12. #define _DEEA_H_
  13.  
  14. #include <stdio.h>
  15. #include <stdlib.h>
  16. #include <string.h>
  17. #include "machine.h"
  18. #include "shared.h"
  19. #include "version.h"
  20.  
  21. const char ver[] = "\0$VER: deea " VERSION_NUM " " VERSION_DATE;
  22.  
  23. #define BUF_SIZE 80
  24.  
  25. #define NOTIN_EA 0
  26. #define IN_EA 1
  27.  
  28. #define SECTION_PRE 0
  29. #define SECTION_DATA 1
  30. #define SECTION_POST 2
  31.  
  32. #endif
  33.  
  34.  
  35.